home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / devt.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  5KB  |  203 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. #ifndef DEVT_H
  38. #define DEVT_H
  39.  
  40. #ifdef DEBUG
  41. static const char DEVT_CVS_ID[] = "@(#) $RCSfile: devt.h,v $ $Revision: 1.22 $ $Date: 2005/01/20 02:25:47 $";
  42. #endif /* DEBUG */
  43.  
  44. /*
  45.  * devt.h
  46.  *
  47.  * This file contains definitions for the low-level cryptoki devices.
  48.  */
  49.  
  50. #ifndef NSSBASET_H
  51. #include "nssbaset.h"
  52. #endif /* NSSBASET_H */
  53.  
  54. #ifndef NSSPKIT_H
  55. #include "nsspkit.h"
  56. #endif /* NSSPKIT_H */
  57.  
  58. #ifndef NSSDEVT_H
  59. #include "nssdevt.h"
  60. #endif /* NSSDEVT_H */
  61.  
  62. #ifndef NSSCKT_H
  63. #include "nssckt.h"
  64. #endif /* NSSCKT_H */
  65.  
  66. #ifndef BASET_H
  67. #include "baset.h"
  68. #endif /* BASET_H */
  69.  
  70. #ifdef NSS_3_4_CODE
  71. #include "secmodt.h"
  72. #endif /* NSS_3_4_CODE */
  73.  
  74. PR_BEGIN_EXTERN_C
  75.  
  76. typedef struct nssSessionStr nssSession;
  77.  
  78. /* XXX until NSSTokenStr is moved */
  79. struct nssDeviceBaseStr
  80. {
  81.   NSSArena *arena;
  82.   PZLock *lock;
  83.   PRInt32 refCount;
  84.   NSSUTF8 *name;
  85.   PRUint32 flags;
  86. };
  87.  
  88. typedef struct nssTokenObjectCacheStr nssTokenObjectCache;
  89.  
  90. /* XXX until devobject.c goes away */
  91. struct NSSTokenStr
  92. {
  93.     struct nssDeviceBaseStr base;
  94.     NSSSlot *slot;  /* Parent (or peer, if you will) */
  95.     CK_FLAGS ckFlags; /* from CK_TOKEN_INFO.flags */
  96.     PRUint32 flags;
  97.     void *epv;
  98.     nssSession *defaultSession;
  99.     NSSTrustDomain *trustDomain;
  100.     PRIntervalTime lastTime;
  101.     nssTokenObjectCache *cache;
  102. #ifdef NSS_3_4_CODE
  103.     PK11SlotInfo *pk11slot;
  104. #endif
  105. };
  106.  
  107. typedef enum {
  108.   nssSlotAskPasswordTimes_FirstTime = 0,
  109.   nssSlotAskPasswordTimes_EveryTime = 1,
  110.   nssSlotAskPasswordTimes_Timeout = 2
  111. nssSlotAskPasswordTimes;
  112.  
  113. struct nssSlotAuthInfoStr
  114. {
  115.   PRTime lastLogin;
  116.   nssSlotAskPasswordTimes askTimes;
  117.   PRIntervalTime askPasswordTimeout;
  118. };
  119.  
  120. struct NSSSlotStr
  121. {
  122.   struct nssDeviceBaseStr base;
  123.   NSSModule *module; /* Parent */
  124.   NSSToken *token;  /* Peer */
  125.   CK_SLOT_ID slotID;
  126.   CK_FLAGS ckFlags; /* from CK_SLOT_INFO.flags */
  127.   struct nssSlotAuthInfoStr authInfo;
  128.   PRIntervalTime lastTokenPing;
  129.   PZLock *lock;
  130. #ifdef NSS_3_4_CODE
  131.   void *epv;
  132.   PK11SlotInfo *pk11slot;
  133. #endif
  134. };
  135.  
  136. struct nssSessionStr
  137. {
  138.   PZLock *lock;
  139.   CK_SESSION_HANDLE handle;
  140.   NSSSlot *slot;
  141.   PRBool isRW;
  142.   PRBool ownLock;
  143. };
  144.  
  145. typedef enum {
  146.     NSSCertificateType_Unknown = 0,
  147.     NSSCertificateType_PKIX = 1
  148. } NSSCertificateType;
  149.  
  150. typedef enum {
  151.     nssTrustLevel_Unknown = 0,
  152.     nssTrustLevel_NotTrusted = 1,
  153.     nssTrustLevel_Trusted = 2,
  154.     nssTrustLevel_TrustedDelegator = 3,
  155.     nssTrustLevel_Valid = 4,
  156.     nssTrustLevel_ValidDelegator = 5
  157. } nssTrustLevel;
  158.  
  159. typedef struct nssCryptokiInstanceStr nssCryptokiInstance;
  160.  
  161. struct nssCryptokiInstanceStr
  162. {
  163.     CK_OBJECT_HANDLE handle;
  164.     NSSToken *token;
  165.     PRBool isTokenObject;
  166.     NSSUTF8 *label;
  167. };
  168.  
  169. typedef struct nssCryptokiInstanceStr nssCryptokiObject;
  170.  
  171. typedef struct nssTokenCertSearchStr nssTokenCertSearch;
  172.  
  173. typedef enum {
  174.     nssTokenSearchType_AllObjects = 0,
  175.     nssTokenSearchType_SessionOnly = 1,
  176.     nssTokenSearchType_TokenOnly = 2,
  177.     nssTokenSearchType_TokenForced = 3
  178. } nssTokenSearchType;
  179.  
  180. struct nssTokenCertSearchStr
  181. {
  182.     nssTokenSearchType searchType;
  183.     PRStatus (* callback)(NSSCertificate *c, void *arg);
  184.     void *cbarg;
  185.     nssList *cached;
  186.     /* TODO: add a cache query callback if the list would be large 
  187.      *       (traversal) 
  188.      */
  189. };
  190.  
  191. struct nssSlotListStr;
  192. typedef struct nssSlotListStr nssSlotList;
  193.  
  194. struct NSSAlgorithmAndParametersStr
  195. {
  196.     CK_MECHANISM mechanism;
  197. };
  198.  
  199. PR_END_EXTERN_C
  200.  
  201. #endif /* DEVT_H */
  202.